home *** CD-ROM | disk | FTP | other *** search
/ Sky at Night 2007 June / SAN CD 6-2007 CD-ROM 25.iso / pc / Software / AstroGrav_Win / Java / jre1.6.0 / lib / rt.jar / javax / print / Doc.class (.txt) < prev    next >
Encoding:
Java Class File  |  2006-11-29  |  402 b   |  19 lines

  1. package javax.print;
  2.  
  3. import java.io.IOException;
  4. import java.io.InputStream;
  5. import java.io.Reader;
  6. import javax.print.attribute.DocAttributeSet;
  7.  
  8. public interface Doc {
  9.    DocFlavor getDocFlavor();
  10.  
  11.    Object getPrintData() throws IOException;
  12.  
  13.    DocAttributeSet getAttributes();
  14.  
  15.    Reader getReaderForText() throws IOException;
  16.  
  17.    InputStream getStreamForBytes() throws IOException;
  18. }
  19.